Socket
Socket
Sign inDemoInstall

@stablelib/constant-time

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stablelib/constant-time

Algorithmically constant-time utility functions


Version published
Weekly downloads
337K
increased by4.64%
Maintainers
1
Weekly downloads
 
Created

What is @stablelib/constant-time?

@stablelib/constant-time is a JavaScript library that provides functions for performing constant-time operations. These operations are designed to take the same amount of time regardless of the input values, which is crucial for cryptographic applications to prevent timing attacks.

What are @stablelib/constant-time's main functionalities?

Constant-time string comparison

This feature allows you to compare two strings in constant time, which is useful for preventing timing attacks that could exploit the time it takes to compare different strings.

const { equal } = require('@stablelib/constant-time');

const a = 'hello';
const b = 'hello';
const c = 'world';

console.log(equal(a, b)); // true
console.log(equal(a, c)); // false

Constant-time byte array comparison

This feature allows you to compare two byte arrays in constant time, which is useful for cryptographic operations where you need to ensure that the comparison does not leak information through timing.

const { equal } = require('@stablelib/constant-time');

const a = new Uint8Array([1, 2, 3]);
const b = new Uint8Array([1, 2, 3]);
const c = new Uint8Array([4, 5, 6]);

console.log(equal(a, b)); // true
console.log(equal(a, c)); // false

Other packages similar to @stablelib/constant-time

FAQs

Package last updated on 21 May 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc